css change color on hover

41

css change color on hover -

<!--
To change the color when hovering in CSS,
you will use the CSS selector called :hover

Example:
-->

<style>
button:hover {
        background-color: darkred;
      }
</style>

Comments

Submit
0 Comments